home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 11 / Cream of the Crop 11-1.iso / editor / we16_95g.zip / WEEXTSRC.ZI_ / PRIVATE.H < prev    next >
Text File  |  1994-10-24  |  777b  |  28 lines

  1.  
  2. #define WINDOWMENU  4   /* position of window menu (0 based)      */
  3.  
  4.  /*  user-defined commands must
  5.   *  be in the range WE_EXTFIRST to
  6.   *  WE_EXTLAST
  7.   */
  8.  
  9. #define EXT_EXAMPLE       WE_EXTFIRST
  10. #define EXT_GOTOTAG       WE_EXTFIRST+1
  11. #define EXT_IF            WE_EXTFIRST+2
  12. #define EXT_FOR           WE_EXTFIRST+3
  13. #define EXT_SWITCH        WE_EXTFIRST+4
  14.  
  15. BOOL FAR PASCAL CommandDlgProc(HWND hDlg, UINT msg, UINT wParam, LONG lParam);
  16. int InitMenu(HWND hWnd);
  17. void GoToTag(HWND hWnd);
  18. UINT FindToken(LPSTR szToken, LPSTR lpLoadFileName);
  19. LPSTR Scan(LPSTR lpPattern,LPSTR lpText,int iLength);
  20.  
  21.  
  22. /* dialog box IDs */
  23. #define IDD_WAIT       100
  24. #define IDD_CAPTURE    101
  25. #define IDD_COMMAND    102
  26. #define IDOK           1
  27. #define IDCANCEL       2
  28.